Autogenerated HTML docs for v2.2.0-rc0 
diff --git a/git-sh-setup.html b/git-sh-setup.html index 271b479..f12a64d 100644 --- a/git-sh-setup.html +++ b/git-sh-setup.html 
@@ -3,7 +3,7 @@  <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">   <head>   <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" />  -<meta name="generator" content="AsciiDoc 8.6.6" />  +<meta name="generator" content="AsciiDoc 8.6.9" />   <title>git-sh-setup(1)</title>   <style type="text/css">   /* Shared CSS for AsciiDoc xhtml11 and html5 backends */  @@ -87,10 +87,16 @@  ul > li { color: #aaa; }   ul > li > * { color: black; }    -pre {  +.monospaced, code, pre {  + font-family: "Courier New", Courier, monospace;  + font-size: inherit;  + color: navy;   padding: 0;   margin: 0;   }  +pre {  + white-space: pre-wrap;  +}     #author {   color: #527bbd;  @@ -219,7 +225,7 @@  }     div.imageblock div.content { padding-left: 0; }  -span.image img { border-style: none; }  +span.image img { border-style: none; vertical-align: text-bottom; }   a.image:visited { color: white; }     dl {  @@ -349,7 +355,7 @@  margin-bottom: 0.1em;   }    -div.toclevel1, div.toclevel2, div.toclevel3, div.toclevel4 {  +div.toclevel0, div.toclevel1, div.toclevel2, div.toclevel3, div.toclevel4 {   margin-top: 0;   margin-bottom: 0;   }  @@ -407,18 +413,14 @@  span.overline { text-decoration: overline; }   span.line-through { text-decoration: line-through; }    +div.unbreakable { page-break-inside: avoid; }  +     /*   * xhtml11 specific   *   * */    -tt {  - font-family: monospace;  - font-size: inherit;  - color: navy;  -}  -   div.tableblock {   margin-top: 1.0em;   margin-bottom: 1.5em;  @@ -452,12 +454,6 @@  *   * */    -.monospaced {  - font-family: monospace;  - font-size: inherit;  - color: navy;  -}  -   table.tableblock {   margin-top: 1.0em;   margin-bottom: 1.5em;  @@ -537,6 +533,8 @@  @media print {   body.manpage div#toc { display: none; }   }  +  +   </style>   <script type="text/javascript">   /*<![CDATA[*/  @@ -581,7 +579,7 @@    function tocEntries(el, toclevels) {   var result = new Array;  - var re = new RegExp('[hH]([2-'+(toclevels+1)+'])');  + var re = new RegExp('[hH]([1-'+(toclevels+1)+'])');   // Function that scans the DOM tree for header elements (the DOM2   // nodeIterator API would be a better technique but not supported by all   // browsers).  @@ -610,7 +608,7 @@  var i;   for (i = 0; i < toc.childNodes.length; i++) {   var entry = toc.childNodes[i];  - if (entry.nodeName == 'div'  + if (entry.nodeName.toLowerCase() == 'div'   && entry.getAttribute("class")   && entry.getAttribute("class").match(/^toclevel/))   tocEntriesToRemove.push(entry);  @@ -656,7 +654,7 @@  var entriesToRemove = [];   for (i = 0; i < noteholder.childNodes.length; i++) {   var entry = noteholder.childNodes[i];  - if (entry.nodeName == 'div' && entry.getAttribute("class") == "footnote")  + if (entry.nodeName.toLowerCase() == 'div' && entry.getAttribute("class") == "footnote")   entriesToRemove.push(entry);   }   for (i = 0; i < entriesToRemove.length; i++) {  @@ -762,14 +760,14 @@  This documentation is meant for people who are studying the   Porcelain-ish scripts and/or are writing new ones.</p></div>   <div class="paragraph"><p>The <em>git sh-setup</em> scriptlet is designed to be sourced (using  -<tt>.</tt>) by other shell scripts to set up some variables pointing at  +<code>.</code>) by other shell scripts to set up some variables pointing at   the normal Git directories and a few helper shell functions.</p></div>   <div class="paragraph"><p>Before sourcing it, your script should set up a few variables;  -<tt>USAGE</tt> (and <tt>LONG_USAGE</tt>, if any) is used to define message  -given by <tt>usage()</tt> shell function. <tt>SUBDIRECTORY_OK</tt> can be set  +<code>USAGE</code> (and <code>LONG_USAGE</code>, if any) is used to define message  +given by <code>usage()</code> shell function. <code>SUBDIRECTORY_OK</code> can be set   if the script can run from a subdirectory of the working tree   (some commands do not).</p></div>  -<div class="paragraph"><p>The scriptlet sets <tt>GIT_DIR</tt> and <tt>GIT_OBJECT_DIRECTORY</tt> shell  +<div class="paragraph"><p>The scriptlet sets <code>GIT_DIR</code> and <code>GIT_OBJECT_DIRECTORY</code> shell   variables, but does <strong>not</strong> export them to the environment.</p></div>   </div>   </div>  @@ -801,7 +799,7 @@  <p>   Set GIT_REFLOG_ACTION environment to a given string (typically   the name of the program) unless it is already set. Whenever  - the script runs a <tt>git</tt> command that updates refs, a reflog  + the script runs a <code>git</code> command that updates refs, a reflog   entry is created using the value of this string to leave the   record of what command updated the ref.   </p>  @@ -821,7 +819,7 @@  </dt>   <dd>   <p>  - outputs <tt>true</tt> or <tt>false</tt> to the standard output stream  + outputs <code>true</code> or <code>false</code> to the standard output stream   to indicate if the repository is a bare repository   (i.e. without an associated working tree).   </p>  @@ -861,12 +859,12 @@  <p>   checks that the working tree and index associated with the   repository have no uncommitted changes to tracked files.  - Otherwise it emits an error message of the form <tt>Cannot  - &lt;action&gt;: &lt;reason&gt;. &lt;hint&gt;</tt>, and dies. Example:  + Otherwise it emits an error message of the form <code>Cannot  + &lt;action&gt;: &lt;reason&gt;. &lt;hint&gt;</code>, and dies. Example:   </p>   <div class="listingblock">   <div class="content">  -<pre><tt>require_clean_work_tree rebase "Please commit or stash them."</tt></pre>  +<pre><code>require_clean_work_tree rebase "Please commit or stash them."</code></pre>   </div></div>   </dd>   <dt class="hdlist1">